Contents | Index | < Browse | Browse >

LETTERputsULETTER Puts a string into the standard output stream.

Overview
#include <stdio.h>

r = puts(s);

int r;
cinst char *s;

Portability
ANSI

Description
Writes the string "s" to the standard output stream "stdout". Instead of the terminating null byte a "\n" line feed will be written.

Returns
EOF in an error occured, otherwise a value >=0.

See also
fputs